跳到主要内容

6.卡诺图1

考虑下图卡诺图中所示的函数f。

alt text

实现这个函数。其中,d表示“无关项”,意味着你可以选择输出任何方便的值。

模块声明

module top_module (
input [4:1] x,
output f );

做题区